All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.LayoutManagerDelegate

public interface LayoutManagerDelegate
This interface wraps the Objective-C category defining delegate methods of the NSLayoutManager class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o layoutManagerDidCompleteLayoutForTextContainer(LayoutManager, TextContainer, boolean)
A wrapper for the - layoutManager:didCompleteLayoutForTextContainer:atEnd: Objective-C instance method implemented by delegates of the LayoutManager class (known as the NSLayoutManager Objective-C class).
 o layoutManagerDidInvalidateLayout(LayoutManager)
A wrapper for the - layoutManagerDidInvalidateLayout: Objective-C instance method implemented by delegates of the LayoutManager class (known as the NSLayoutManager Objective-C class).

Methods

 o layoutManagerDidInvalidateLayout
 public abstract void layoutManagerDidInvalidateLayout(LayoutManager sender)
A wrapper for the - layoutManagerDidInvalidateLayout: Objective-C instance method implemented by delegates of the LayoutManager class (known as the NSLayoutManager Objective-C class).

 o layoutManagerDidCompleteLayoutForTextContainer
 public abstract void layoutManagerDidCompleteLayoutForTextContainer(LayoutManager layoutManager,
                                                                     TextContainer textContainer,
                                                                     boolean layoutFinishedFlag)
A wrapper for the - layoutManager:didCompleteLayoutForTextContainer:atEnd: Objective-C instance method implemented by delegates of the LayoutManager class (known as the NSLayoutManager Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index